From BlenderWiki

Jump to: navigation, search
Note: This is an archived version of the Blender Developer Wiki. The current and active wiki is available on wiki.blender.org.

Error in Python code

I believe there is an error in the last Python def.

    def ENJA(self, layout, ob, md, wide_ui):
        layout.label(text="Coming soon.")

should be written without wide_ui:

    def ENJA(self, layout, ob, md):
        layout.label(text="Coming soon.")

--Shinjin 12:16, 19 November 2010 (UTC)

Do all modifiers require a isEnabled function?

Is the segment int modifiers_isEnjaEnabled(struct Object *ob); required for all modifiers? Since none of the other modifiers I can see have similar definitions, I would think not. Is this just something tricky that the SoftBody modifier was doing? Hmm...???

Ilent2 12:02, 25 January 2014 (CET)